This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Controlling the browser when a web document is refreshed ~Umberto Nongeroson 23.Dec.03 08:25 PM a Web browser General All ReleasesAll Platforms
You'll need to add a hidden field to the form/document to hold an "anchor" value, and populate that field from anything that refreshes the document. In this case, you can just use the <select> itself rather than trying to fool around with HTML anchors. Use the onload of the form to call focus() on the field whose name is held in the hidden field.
Then again, you could avoid the server-side refresh by using an <iframe> in the main form to bring the info back (if policy allows).